home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-11 | 556 b | 19 lines | [TEXT/ScoM] |
- rotate-f sequence
-
- This function enables the generation of a number of symbol patterns emanating from the sequential forward rotation of a single pattern.
-
- (rotate-f '(a b c d e f g h i j k l))
-
- => ((a b c d e f g h i j k l)
- (b c d e f g h i j k l a)
- (c d e f g h i j k l a b)
- (d e f g h i j k l a b c)
- (e f g h i j k l a b c d)
- (f g h i j k l a b c d e)
- (g h i j k l a b c d e f)
- (h i j k l a b c d e f g)
- (i j k l a b c d e f g h)
- (j k l a b c d e f g h i)
- (k l a b c d e f g h i j)
- (l a b c d e f g h i j k))
-